home *** CD-ROM | disk | FTP | other *** search
- $INCLUDE "GEMDOS.INC"
-
- if command$=GemDOS$ then
- call PrepareScreen(10,"Information")
- else
- call InitScreen(10,"Information")
- end if
-
- call BoolGadget(5,26,25,1,"Zurck zu AControl",1)
- call Center(9,"AControl - Version 1.0")
- call Center(12,"Copyright (C) 1994 by")
- call Center(13,"Thomas Dreibholz")
- call Center(14,"All rights reserved.")
- call Center(20,"Freier Speicher:"+str$(int(fre(-1)/1024))+" KBytes")
- call MouseOn
-
- ende=0
- while ende=0
- call MouseDown
- if mouse.button<>0 then call MouseHandler
-
- if gad.num=1 or gad.num=33333 then
- ende=1
- end if
-
- gad.num=-1
- wend
-
- call MouseOff
- end